home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / date / adxdial.int < prev    next >
Text File  |  1996-04-08  |  897b  |  39 lines

  1. {$G+,X+,F+}
  2.  
  3. {Conditional defines that may affect this unit}
  4. {$I AWDEFINE.INC}
  5.  
  6. {*********************************************************}
  7. {*                   ADXDIAL.PAS 1.01                    *}
  8. {*        Copyright (c) TurboPower Software 1995         *}
  9. {*                 All rights reserved.                  *}
  10. {*********************************************************}
  11.  
  12. unit ADXDial;
  13.  
  14. interface
  15.  
  16. uses
  17.   SysUtils, WinTypes, WinProcs, Messages,
  18.   Classes, Graphics, Controls,
  19.   Forms, Dialogs, StdCtrls, ExtCtrls;
  20.  
  21. type
  22.   TDialDialog = class(TForm)
  23.     Panel1: TPanel;
  24.     Label1: TLabel;
  25.     Number: TEdit;
  26.     Dial: TButton;
  27.     Cancel: TButton;
  28.     procedure DialClick(Sender: TObject);
  29.     procedure CancelClick(Sender: TObject);
  30.   private
  31.     { Private declarations }
  32.   public
  33.     { Public declarations }
  34.   end;
  35.  
  36. var
  37.   DialDialog: TDialDialog;
  38.  
  39.